home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Czytniki RSS / RSS Bandit 1.3.0.42 / RssBandit Installer.msi / _172FF5180BC61D3C6D240F14338A23AA / _96F0042AA7F94A55ABCFA50234868166 < prev    next >
Encoding:
Text File  |  2005-11-19  |  7.7 KB  |  206 lines

  1. using System;
  2. using System.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.Windows.Forms;
  6. using System.IO;
  7.  
  8. namespace BlogExtension.Delicious 
  9. {
  10.     public class DeliciousPluginConfigurationForm : System.Windows.Forms.Form
  11.     {
  12.         public string TemplateText;
  13.  
  14.         private System.Windows.Forms.Button _btOK;
  15.         private System.Windows.Forms.Button _btCancel;
  16.         private System.Windows.Forms.GroupBox groupBox1;
  17.         internal System.Windows.Forms.TextBox textPwd;
  18.         private System.Windows.Forms.Label label7;
  19.         internal System.Windows.Forms.TextBox textUser;
  20.         private System.Windows.Forms.Label label6;
  21.         internal System.Windows.Forms.TextBox textUri;
  22.         private System.Windows.Forms.Label label2;
  23.         private System.ComponentModel.Container components = null;
  24.  
  25.  
  26.         public DeliciousPluginConfigurationForm(string username, string password, string apiUrl)
  27.         {
  28.             InitializeComponent();
  29.             InitializeComponentTranslation();
  30.             textUri.Text  = apiUrl; 
  31.             textUser.Text = username; 
  32.             textPwd.Text  = password; 
  33.         
  34.         }
  35.  
  36.         private void InitializeComponentTranslation() {
  37.             this._btOK.Text = Resource.Manager["RES_DeliciousFormOk"];
  38.             this._btCancel.Text = Resource.Manager["RES_DeliciousFormCancel"];
  39.             this.groupBox1.Text = Resource.Manager["RES_DeliciousFormAuthentication"];
  40.             this.label7.Text = Resource.Manager["RES_DeliciousFormPassword"];
  41.             this.label6.Text = Resource.Manager["RES_DeliciousFormUsername"];
  42.             this.label2.Text = Resource.Manager["RES_DeliciousFormApiUrl"];
  43.             this.Text = Resource.Manager["RES_DeliciousFormConfiguration"];
  44.         }
  45.         
  46.  
  47.         protected override void Dispose( bool disposing )
  48.         {
  49.             if( disposing )
  50.             {
  51.                 if (components != null) 
  52.                 {
  53.                     components.Dispose();
  54.                 }
  55.             }
  56.             base.Dispose( disposing );
  57.         }
  58.  
  59.         #region Windows Form Designer generated code
  60.         /// <summary>
  61.         /// Required method for Designer support - do not modify
  62.         /// the contents of this method with the code editor.
  63.         /// </summary>
  64.         private void InitializeComponent()
  65.         {
  66.             this._btOK = new System.Windows.Forms.Button();
  67.             this._btCancel = new System.Windows.Forms.Button();
  68.             this.groupBox1 = new System.Windows.Forms.GroupBox();
  69.             this.textPwd = new System.Windows.Forms.TextBox();
  70.             this.label7 = new System.Windows.Forms.Label();
  71.             this.textUser = new System.Windows.Forms.TextBox();
  72.             this.label6 = new System.Windows.Forms.Label();
  73.             this.textUri = new System.Windows.Forms.TextBox();
  74.             this.label2 = new System.Windows.Forms.Label();
  75.             this.groupBox1.SuspendLayout();
  76.             this.SuspendLayout();
  77.             // 
  78.             // _btOK
  79.             // 
  80.             this._btOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  81.             this._btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
  82.             this._btOK.Location = new System.Drawing.Point(240, 147);
  83.             this._btOK.Name = "_btOK";
  84.             this._btOK.TabIndex = 5;
  85.             this._btOK.Text = "OK";
  86.             // 
  87.             // _btCancel
  88.             // 
  89.             this._btCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  90.             this._btCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  91.             this._btCancel.Location = new System.Drawing.Point(328, 147);
  92.             this._btCancel.Name = "_btCancel";
  93.             this._btCancel.TabIndex = 4;
  94.             this._btCancel.Text = "Cancel";
  95.             // 
  96.             // groupBox1
  97.             // 
  98.             this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
  99.                 | System.Windows.Forms.AnchorStyles.Left) 
  100.                 | System.Windows.Forms.AnchorStyles.Right)));
  101.             this.groupBox1.Controls.Add(this.textPwd);
  102.             this.groupBox1.Controls.Add(this.label7);
  103.             this.groupBox1.Controls.Add(this.textUser);
  104.             this.groupBox1.Controls.Add(this.label6);
  105.             this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.System;
  106.             this.groupBox1.Location = new System.Drawing.Point(0, 48);
  107.             this.groupBox1.Name = "groupBox1";
  108.             this.groupBox1.Size = new System.Drawing.Size(410, 80);
  109.             this.groupBox1.TabIndex = 36;
  110.             this.groupBox1.TabStop = false;
  111.             this.groupBox1.Text = "Authentication";
  112.             // 
  113.             // textPwd
  114.             // 
  115.             this.textPwd.AllowDrop = true;
  116.             this.textPwd.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
  117.                 | System.Windows.Forms.AnchorStyles.Right)));
  118.             this.textPwd.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  119.             this.textPwd.Location = new System.Drawing.Point(128, 50);
  120.             this.textPwd.Name = "textPwd";
  121.             this.textPwd.PasswordChar = '*';
  122.             this.textPwd.Size = new System.Drawing.Size(225, 20);
  123.             this.textPwd.TabIndex = 36;
  124.             this.textPwd.Text = "";
  125.             // 
  126.             // label7
  127.             // 
  128.             this.label7.FlatStyle = System.Windows.Forms.FlatStyle.System;
  129.             this.label7.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  130.             this.label7.Location = new System.Drawing.Point(25, 55);
  131.             this.label7.Name = "label7";
  132.             this.label7.Size = new System.Drawing.Size(95, 16);
  133.             this.label7.TabIndex = 35;
  134.             this.label7.Text = "&Password";
  135.             this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  136.             // 
  137.             // textUser
  138.             // 
  139.             this.textUser.AllowDrop = true;
  140.             this.textUser.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
  141.                 | System.Windows.Forms.AnchorStyles.Right)));
  142.             this.textUser.Location = new System.Drawing.Point(128, 26);
  143.             this.textUser.Name = "textUser";
  144.             this.textUser.Size = new System.Drawing.Size(225, 20);
  145.             this.textUser.TabIndex = 34;
  146.             this.textUser.Text = "";
  147.             // 
  148.             // label6
  149.             // 
  150.             this.label6.FlatStyle = System.Windows.Forms.FlatStyle.System;
  151.             this.label6.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  152.             this.label6.Location = new System.Drawing.Point(25, 30);
  153.             this.label6.Name = "label6";
  154.             this.label6.Size = new System.Drawing.Size(95, 16);
  155.             this.label6.TabIndex = 33;
  156.             this.label6.Text = "User&name";
  157.             this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  158.             // 
  159.             // textUri
  160.             // 
  161.             this.textUri.AllowDrop = true;
  162.             this.textUri.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
  163.                 | System.Windows.Forms.AnchorStyles.Right)));
  164.             this.textUri.Location = new System.Drawing.Point(112, 8);
  165.             this.textUri.Name = "textUri";
  166.             this.textUri.Size = new System.Drawing.Size(296, 20);
  167.             this.textUri.TabIndex = 38;
  168.             this.textUri.Text = "";
  169.             // 
  170.             // label2
  171.             // 
  172.             this.label2.FlatStyle = System.Windows.Forms.FlatStyle.System;
  173.             this.label2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  174.             this.label2.Location = new System.Drawing.Point(8, 8);
  175.             this.label2.Name = "label2";
  176.             this.label2.Size = new System.Drawing.Size(96, 32);
  177.             this.label2.TabIndex = 37;
  178.             this.label2.Text = "&del.icio.us API URL";
  179.             this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  180.             // 
  181.             // DeliciousPluginConfigurationForm
  182.             // 
  183.             this.AcceptButton = this._btOK;
  184.             this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
  185.             this.CancelButton = this._btCancel;
  186.             this.ClientSize = new System.Drawing.Size(416, 181);
  187.             this.ControlBox = false;
  188.             this.Controls.Add(this.textUri);
  189.             this.Controls.Add(this.label2);
  190.             this.Controls.Add(this.groupBox1);
  191.             this.Controls.Add(this._btOK);
  192.             this.Controls.Add(this._btCancel);
  193.             this.MaximizeBox = false;
  194.             this.MinimizeBox = false;
  195.             this.Name = "DeliciousPluginConfigurationForm";
  196.             this.Text = "Del.icio.us Plugin Configuration...";
  197.             this.groupBox1.ResumeLayout(false);
  198.             this.ResumeLayout(false);
  199.  
  200.         }
  201.         #endregion
  202.         
  203.         
  204.     }
  205. }
  206.